home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / magazine / executive_v2.00 / data / developers.lzx / SysInfo / examples / test / smakefile < prev    next >
Makefile  |  2002-06-15  |  508b  |  25 lines

  1. #
  2. # SAS/C makefile for SysInfo.library/test
  3. #
  4. # This file is public domain.
  5. #
  6. # Author: Petri Nordlund <petrin@megabaud.fi>
  7. #
  8. # $Id: smakefile 1.3 1996/09/05 23:20:08 petrin Exp petrin $
  9. #
  10.  
  11. #DEBUG     = DEBUG=SYMBOLFLUSH
  12. DEBUG     =
  13.  
  14. CFLAGS    = MATH=STANDARD PARAMETERS=REGISTERS NOSTACKCHECK STRINGMERGE \
  15.             NOCHECKABORT NOMULTIPLEINCLUDES SMALLCODE SMALLDATA $(DEBUG)
  16.  
  17. test: test.o
  18.    sc link $(CFLAGS) test.o
  19.  
  20. test.o: test.c defs.h
  21.    sc $(CFLAGS) test.c
  22.  
  23. clean:
  24.    delete test test.lnk test.o
  25.